TextShape DotDurationMicroseconds

Gets or sets the length of time (in microseconds) the laser will stay on for a dot in special dotted fonts used for tracing and OCR use. For example SEMI OCR character set.

public int DotDurationMicroseconds {get;Set}

 

Return value

int Duration of the laser should stay on for a dot

 

Example

Copy
TextShape textShape = new TextShape();

textShape.AddText("Sample text Sample text", "Arial", FontStyle.Regular, 10f, 1f);
textShape.TextBoxHeight = 20;
textShape.TextBoxWidth = 60;

textShape.DotDurationMicroseconds = 2;